home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 December / EnigmA AMIGA RUN 23 (1997)(G.R. Edizioni)(IT)[!][issue 1997-12][EAR-CD VII].iso / recent1 / pcq20.readme < prev    next >
Text File  |  1997-11-02  |  974b  |  29 lines

  1. Short:    PCQ Pascal 2.0 with varargs functions
  2. Author:   Patrick Quaid, Nils Sjoholm
  3. Uploader: nils.sjoholm@mailbox.swipnet.se (Nils Sjoholm)
  4. Type:     dev/lang
  5.  
  6. This is the new PCQ archive.
  7.  
  8. So what's new?
  9.  
  10. I have made a new pcq.lib with a lot of new functions.
  11. New startupcode 2.0+.
  12. Pcq.lib has now defines for all varargs functions
  13. in the system libraries. That means you can write
  14. code like this:
  15.  
  16.       w := OpenWindowTags(NIL,
  17.                  WA_Flags,     WFLG_DEPTHGADGET + WFLG_DRAGBAR +
  18.                                WFLG_CLOSEGADGET + WFLG_SIZEGADGET + WFLG_ACTIVATE,
  19.                  WA_IDCMP,     IDCMP_CLOSEWINDOW,
  20.                  WA_Width,     MINWINDOWWIDTH,
  21.                  WA_Height,    MINWINDOWHEIGHT,
  22.                  WA_MinWidth,  MINWINDOWWIDTH,
  23.                  WA_MinHeight, MINWINDOWHEIGHT,
  24.                  WA_MaxWidth,  100,
  25.                  WA_MaxWidth,  100,
  26.                  TAG_END);
  27.  
  28. Read WhatsNew in the archive for changes to pcq.lib
  29.